翻訳と辞書
Words near each other
・ Stochastic process
・ Stochastic process rare event sampling
・ Stochastic processes and boundary value problems
・ Stochastic Processes and their Applications
・ Stochastic programming
・ Stochastic quantization
・ Stochastic resonance
・ Stochastic Resonance (book)
・ Stochastic resonance (sensory neurobiology)
・ Stochastic roadmap simulation
・ Stochastic screening
・ Stochastic semantic analysis
・ Stochastic simulation
・ Stochastic thinking
・ Stochastic tunneling
Stochastic universal sampling
・ Stochastic vacuum model
・ Stochastic volatility
・ Stochastic volatility jump
・ Stochastica
・ Stochastically stable equilibrium
・ Stochastics and Dynamics
・ Stochelo Rosenberg
・ Stochocracy
・ Stochos
・ Stochov
・ Stock
・ Stock (album)
・ Stock (disambiguation)
・ Stock (firearms)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Stochastic universal sampling : ウィキペディア英語版
Stochastic universal sampling

Stochastic universal sampling (SUS) is a technique used in genetic algorithms for selecting potentially useful solutions for recombination. It was introduced by James Baker.〔

SUS is a development of fitness proportionate selection (FPS) which exhibits no bias and minimal spread. Where FPS chooses several solutions from the population by repeated random sampling, SUS uses a single random value to sample all of the solutions by choosing them at evenly spaced intervals. This gives weaker members of the population (according to their fitness) a chance to be chosen and thus reduces the unfair nature of fitness-proportional selection methods.
Other methods like roulette wheel can have bad performance when a member of the population has a really large fitness in comparison with other members. Using a comb-like ruler, SUS starts from a small random number, and chooses the next candidates from the rest of population remaining, not allowing the fittest members to saturate the candidate space.
Described as an algorithm, pseudocode for SUS looks like:

SUS(Population, N)
F := total fitness of Population
N := number of offspring to keep
P := distance between the pointers (F/N)
Start := random number between 0 and P
Pointers :=
i := 0
for P in Points
while fitness sum of Population() < P
i++
add Population() to Keep
return Keep

Where Population() is the set of individuals with array-index 0 to (and including) i.
Here RWS() describes the bulk of fitness proportionate selection (also known as "roulette wheel selection") - in true fitness proportional selection the parameter Points is always a (sorted) list of random numbers from 0 to F. The algorithm above is intended to be illustrative rather than canonical.
==See also==

*Fitness proportionate selection
*Reward-based selection

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Stochastic universal sampling」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.